home *** CD-ROM | disk | FTP | other *** search
/ Stolen Data 3 / Stolen Data 3.adf / MAG-TEXT / CODE3b < prev    next >
Text File  |  1989-01-01  |  953b  |  31 lines

  1. Screen1   Rs.b 44*256 ; Screen1=$70000
  2. Screen2   Rs.b 44*256 ; Screen2=$72c00
  3. Sintab    Rs.b 1024   ; Sintab =$75800
  4.   etc.....
  5.  
  6.     This  way  you  don't  need to keep
  7. tabs on your memory situation, just let
  8. the   assembler   do   the  work;  Thus
  9. creating code which is more expandable,
  10. and easier to follow.  If you need some
  11. space  for  a  table  theres no need to
  12. hunt  through lists of addresses trying
  13. to  find  a suitable space, just append
  14. the  block  onto  the  end of the list,
  15. it's as simple as that.
  16.  
  17.     I hope you find this as useful as I
  18. have, its yet another reason to give up
  19. on  SEKA  which  is  after  all  a very
  20. inferior  Assembler.  Now onto the main
  21. article of this section.
  22.  
  23.                SCROLLERS
  24.               -----------
  25.  
  26.     The  scroller  is  by  far the most
  27. common  (  and most hated ) routine you
  28. will find in a demo.  It rears its ugly
  29. head  in  many  forms  from  the simple
  30. horizontal  scroller, to bob scrollers,
  31.